home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / halley.arc / HALLEYS.DOC < prev    next >
Encoding:
Text File  |  1985-10-11  |  4.9 KB  |  111 lines

  1.                           HALLEYS COMET
  2.  (Creative Computing November 1985 by H. Schenk and J. Anderson)
  3.  
  4.      HALLEYS.BAS will guide you in locating the famous comet.  In
  5. exchange for the current date, the program will reveal:
  6.  
  7.           - Location in terms of right ascension and declination
  8.  
  9.           - Distance from the Sun and Earth in astronomical units
  10.  
  11.           - Magnitude
  12.  
  13.           - Rising and setting times
  14.  
  15.      Because novice astronomers may be unfamiliar with some of the
  16. terms used in the output, we offer some brief definitions and take a
  17. look at how they relate to the program.
  18.  
  19.      Right Ascension and Declination are coordinates for measuring the
  20. position of an object in the sky.  In a way, they are like X and Y
  21. coordinates used to locate a point on a graph.  Right ascension
  22. provides the east-west position (the X coordinate) and declination
  23. provides the north-south position (the Y coordinate).  Right ascension
  24. is measured in hours and declination is measured in degrees.
  25.  
  26.      Universal Time (UT), a standard measurement of time for
  27. astronomers, is the time in Greenwich, England.  A large number of
  28. observations were made at the Royal Greenwich Observatory near London,
  29. and that place was selected arbitrarily as the starting point for
  30. measuring longitude.
  31.  
  32.      Astronomical Units (AU) measure distance without our solar system.
  33. One AU equals the distance between the Earth and the Sun, or about
  34. 93 million miles.
  35.  
  36.      Magnitude refers to the brightness of the comet.  The lower the
  37. number, the brighter the object.  The higher the number, the greater
  38. need to view the comet through binoculars or a telescope.
  39.  
  40.      Rising and Setting Times tells you when the comet is visible
  41. above the horizon.
  42.  
  43.      To run the program, all you have to do is specify whether you
  44. want the output in Daylight or Standard time and then enter the date.
  45. The program returns the necessary information.
  46.  
  47.      You may also enter historical dates.  For example, Halley's Comet
  48. last appeared in 1910.  You might want to check the differences in
  49. location between appearances.
  50.  
  51.      The program is set for New York City latitude and longitude.
  52. Your latitude and longitude is probably different, so your rising and
  53. setting times will also be different.
  54.  
  55.  
  56.  
  57.      To localize the program for your area, run the HALSETUP.BAS
  58. program, take the results, and make the substitutions in the main
  59. program (HALLEYS.BAS).
  60.  
  61.      Those of you who want to do the trigonometry instead of letting
  62. the HALSETUP.BAS program do it for you should perform the following
  63. steps:
  64.  
  65.           - Convert latitude degrees into radians by dividing your
  66. latitude by 57.2958.  Take the SIN of this number, find line 720, and
  67. put it in place of 0.656059.  Next, take the COS of the number, find
  68. line 720, and put it in place of 0.754710.
  69.  
  70.           - Take your longitude, subtract 75 if you are in the Eastern
  71. Standard Time zone, 90 if you are in the Central Standard Time zone,
  72. 105 if you are in the Mountain Standard Time zone, or 120 if you are
  73. in the Pacific Standard Time zone.  Multiply this number by 0.0666666,
  74. and substitute the result for -.066666 in lines 770 and 780.
  75.  
  76.           - If you are in the Central, Mountain, or Pacific Time zone,
  77. remember to replace the word Eastern in lines 820 and 870 with your
  78. appropriate time zone.
  79.  
  80.           - Finally, replace the number -1 in lines 1320 with 0 (if
  81. you are in the Central zone), 1 (if you are in the Mountain zone), or
  82. 2 (if you are in the Pacific zone).
  83.  
  84.      You can find your latitude and longitude in any atlas.  For those
  85. who don't need pinpoint accuracy, the table below provides them for
  86. selected cities.
  87.  
  88.      We suggest you find an area as devoid of artificial light as
  89. possible.  If you miss Halley's Comet this year, you can always try
  90. again later -- about the year 2060.
  91.  
  92.      City             Latitude      Longitude 
  93.      ----             --------      ---------
  94. Albuquerque, NM          35            107
  95. Boston, MA               42             71
  96. Buffalo, NY              43             79
  97. Chicago, IL              42             88
  98. Dallas, TX               33             97
  99. Denver, CO               40            105
  100. Los Angeles, CA          34            118
  101. Miami, FL                26             80
  102. Minneapolis, MN          45             93
  103. New York, NY             41             74
  104. Philadelphia, PA         40             75
  105. Phoeniz, AZ              33            112
  106. St. Louis, MO            39             90
  107. Salt Lake City, UT       41            112
  108. San Francisco, CA        38            122
  109. Seattle, WA              48            122
  110. Washington, DC           39             77
  111.